home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Otherware
/
Otherware_1_SB_Development.iso
/
mac
/
developm
/
language
/
harvest.cpt
/
Harvest C
/
DHashTable.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-02-10
|
277 b
|
20 lines
/*
DHashTable.h
*/
#include "DCollection.h"
#include "DHashLink.h"
#include "DSymbol.h"
class DHashTable : public DCollection {
long numSlots;
DHashLink **theSlots;
public:
void IHashTable(long);
void Add(DSymbol *);
void Dispose(void);
DSymbol *Find(char *);
};